From: kaf24@firebug.cl.cam.ac.uk Date: Sat, 8 Apr 2006 11:09:25 +0000 (+0100) Subject: Clean up IO-APIC update tracing and demote to DPRINTK(). X-Git-Tag: archive/raspbian/4.8.0-1+rpi1~1^2~16158^2~9^2~12 X-Git-Url: https://dgit.raspbian.org/%22http://www.example.com/cgi/success//%22http:/www.example.com/cgi/success/?a=commitdiff_plain;h=ea121d62ab22604f2adc008d6a8740fa3d186b11;p=xen.git Clean up IO-APIC update tracing and demote to DPRINTK(). Signed-off-by: Keir Fraser --- diff --git a/xen/arch/x86/io_apic.c b/xen/arch/x86/io_apic.c index 97aae7a77d..715b7d294d 100644 --- a/xen/arch/x86/io_apic.c +++ b/xen/arch/x86/io_apic.c @@ -1897,12 +1897,11 @@ int ioapic_guest_read(unsigned long physbase, unsigned int reg, u32 *pval) } #define WARN_BOGUS_WRITE(f, a...) \ - printk("%s: apic=%d,pin=%d,oirq=%d,nirq=%d\n" \ - "%s: oent=%08x:%08x,nent=%08x:%08x\n" \ - "%s: " f, __FUNCTION__, apic, pin, old_irq, new_irq, \ - __FUNCTION__, *(u32 *)&old_rte, *((u32 *)&old_rte+1), \ - *(u32 *)&new_rte, *((u32 *)&new_rte+1), \ - __FUNCTION__ , ##a ) + DPRINTK("\n%s: apic=%d, pin=%d, old_irq=%d, new_irq=%d\n" \ + "%s: old_entry=%08x, new_entry=%08x\n" \ + "%s: " f, __FUNCTION__, apic, pin, old_irq, new_irq, \ + __FUNCTION__, *(u32 *)&old_rte, *(u32 *)&new_rte, \ + __FUNCTION__ , ##a ) int ioapic_guest_write(unsigned long physbase, unsigned int reg, u32 val) {